home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / EPRINTF.C < prev    next >
C/C++ Source or Header  |  1991-05-08  |  156b  |  16 lines

  1. eprintf(char *f, ...)
  2. {
  3.   char buf[1000];
  4.   vsprintf(buf, f, (&f)+1);
  5.   write(2, buf, strlen(buf));
  6. }
  7.  
  8. exit(n)
  9. {
  10.   _exit(n);
  11. }
  12.  
  13. __main()
  14. {
  15. }
  16.